home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / traceroute / dist / Makefile < prev    next >
Encoding:
Makefile  |  1989-03-01  |  295 b   |  14 lines

  1. INCL =
  2. CFLAGS = -O
  3. LIBS =
  4.  
  5. traceroute: traceroute.c
  6.     cc $(CFLAGS) $(INCL) -o traceroute traceroute.c $(LIBS)
  7.  
  8. install: traceroute
  9.     install -o root -g bin -m 4555 traceroute ${DESTDIR}/etc/traceroute 
  10.  
  11. lint:
  12.     lint -b -h -x $(INCL) traceroute.c | \
  13.       grep -v 'possible pointer alignment problem'
  14.